Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632707 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/14 - Visit Counter

font/ cody/swapnilsparsh/30DaysOfJavaScript/14 - Visit Counter/font/
1 Items
  • sans.ttf
  • assets/ cody/swapnilsparsh/30DaysOfJavaScript/14 - Visit Counter/assets/
    1 Items
  • counter.png
  • style.css cody/swapnilsparsh/30DaysOfJavaScript/14 - Visit Counter/style.css
    101 Views
    0 Comments
    * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    }

    @font-face {
    font-family: "sans";
    index.html cody/swapnilsparsh/30DaysOfJavaScript/14 - Visit Counter/index.html
    321 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <link rel="shortcut icon" href="assets/counter.png" type="image/x-icon">
    <link rel="stylesheet" href="style.css">
    script.js cody/swapnilsparsh/30DaysOfJavaScript/14 - Visit Counter/script.js
    159 Views
    0 Comments
    const countEl = document.getElementById('count');

    updateVisitCount();

    function updateVisitCount() {
    fetch('https://api.countapi.xyz/hit/swapnilsparsh/?amount=1')
    .then(res => res.json())
    .then(res => {